Just load keyswap.el.
authorRichard M. Stallman <rms@gnu.org>
Sun, 30 May 1993 03:44:07 +0000 (03:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 30 May 1993 03:44:07 +0000 (03:44 +0000)
lisp/term/bobcat.el

index 7abe538ef77bfd376a97a363aa2040a04858ff67..f106b8b75c2b90a03235efedfab687684f6f971e 100644 (file)
@@ -1,11 +1,2 @@
 ;;; HP terminals usually encourage using ^H as the rubout character
-
-(let ((the-table (make-string 128 0)))
-  (let ((i 0))
-    (while (< i 128)
-      (aset the-table i i)
-      (setq i (1+ i))))
-  ;; Swap ^H and DEL
-  (aset the-table ?\177 ?\^h)
-  (aset the-table ?\^h ?\177)
-  (setq keyboard-translate-table the-table))
+(load "term/keyswap" nil t)